/* === General Reset === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === Body === */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f3; /* light sage background */
  color: #1f1f1f;
  line-height: 1.6;
  margin: 20px;
}

/* === Headings === */
h1,
h2,
h3 {
  color: #3e6259; /* deep sage green */
  margin-bottom: 10px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* === Navigation === */
nav {
  background-color: #6b8e77; /* medium sage green */
  padding: 10px;
  text-align: center;
}

nav a {
  color: #307550;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: #ffffff; /* darker sage for hover */
}

/* === Paragraphs === */
p {
  margin-bottom: 15px;
}

/* === Lists === */
ul {
  list-style-type: square;
  margin-left: 40px;
}

/* === Tables === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th,
td {
  border: 1px solid #c8d3c2;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #ffffff;
}

/* === Images === */
img {
  display: block;
  margin: 20px auto;
  max-width: 200px;
  border-radius: 8px;
}

/* === Project Previews === */
#P1MainPhoto {
  display: block;
  margin: 50px auto;
  max-width: 1000px;
  border-radius: 8px;
}

/* === Project Photos === */
#P1ShowcasePhotos{
   display: block;
  margin: 50px auto;
  max-width: 600px;
  border-radius: 8px; 
}

/* === Number List === */
#NumList{
  padding-left: 40px;
}
/* === Image Caption === */
figcaption {
  display: block;
  margin: 20px auto;
  max-width: 200px;
  text-align: center;
  color: #3e6259;
}

/* === Footer === */
footer {
  background-color: #3e6259; /* deep sage */
  color: #ffffff;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
}

/* === Links === */
a {
  color: #6b8e77;
}

#LinkedIn {
  color: #4d7362; /* slightly darker sage */
}

/* === Forms === */
form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #3e6259;
}

input,
textarea,
button {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #c8d3c2;
  border-radius: 4px;
}

button {
  background-color: #6b8e77;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #4d7362; /* darker sage on hover */
}
